dsh-test-runner:DSH 的结构化测试运行插件

dsh-test-runner 是 DSH 生态的一款 MIT 许可证插件,核心工具 `test_run` 旨在优化智能体执行测试流程。它通过自动探测 vitest、jest、pytest 及 node:test 等框架,执行测试并结构化解析失败摘要,从而避免模型阅读冗长的原始终端输出,降低多轮修复成本。 该插件支持按文件或用例模式过滤测试目标,提供 `last_failed` 功能以仅重跑失败用例,并允许通过 `command` 参数覆盖默认执行命令。默认超时时间为 120 秒,且严格遵循会话级的沙箱安全策略。安装需通过本地目录添加命令,随后重启 DSH Web 进程生效。 适用场景为频繁执

Read More
Let Agent fix itself until all tests pass with grinding-until-pass

### 介绍 This article introduces `grinding-until-pass` from spencerpauly/awesome-cursor-skills: It enables the Agent to independently fix issues until tests, builds, or lint checks pass via the `fix→run→check` loop. We verify that the steps follow the official SKILL.md rules, including iterating within 10 times, fixing one thing at a time, and prohibiting deleting tests or suppressing errors. We also explain the installation methods using `npx skills` or copying the skill to `.cursor/skills`, along with target command examples and advanced usage of Cursor Hooks. This skill is suitable for scenarios such as large-scale refactoring, dependency upgrades, and clearing failed builds after merging branches; manual intervention is required for slow tests or when design changes are needed.

Read More